home *** CD-ROM | disk | FTP | other *** search
-
- ; This script should be useful for people who want to prepare
- ; boot-disk with MILL.
- ; It just gathers all required files in 'ram:disk/' directory.
- ;
- ; COMPATIBILITY NOTE:
- ; amigaguide.library from OS3.0+ internally use datatypes.
- ; Just get somewhere older version or use Your Workbench disk
- ; to boot (surely You have one that runs for instance in DblPal
- ; if needed).
- ;
- ; Free disk-space problem: first files to delete
- ; are LIBS:commodities.library and some LIBS:xfd/ files...
-
- ; Free memory problem: MILL has been designed for at least 4MB
- ; of FastMem however it works even on non expanded A1200.
- ; Suggested solution is already above. Avoid AddXXk commands!
- ; Anyway menus of MILL are black in 2 color Workbench!
-
-
- failat 20
-
- cd ""
-
- makedir ram:disk ram:disk/libs ram:disk/libs/xad ram:disk/libs/xfd
- makedir ram:disk/s ram:disk/c
-
- copy LIBS:68040.library to ram:disk/libs/
- copy LIBS:asl.library to ram:disk/libs/
- copy LIBS:xvs.library to ram:disk/libs/
- copy LIBS:amigaguide.library to ram:disk/libs/
- copy LIBS:commodities.library to ram:disk/libs/
- copy LIBS:xadmaster.library to ram:disk/libs
- copy LIBS:xfdmaster.library to ram:disk/libs
- copy LIBS:xad/lzx to ram:disk/libs/xad/
- copy LIBS:xfd/ to ram:disk/libs/xfd/ QUIET
-
- copy C:setpatch to ram:disk/c/
- copy C:assign to ram:disk/c/
- copy C:LoadWB to ram:disk/c/
-
- copy mill to ram:disk/
- copy mill.info to ram:disk/
- copy mill.key to ram:disk/
- copy notifier to ram:disk/
- copy integrity to ram:disk/
- copy watchdog to ram:disk/
-
- echo "SetPatch QUIET" >ram:disk/s/startup-sequence
- echo "Assign ENV: RAM:" >>ram:disk/s/startup-sequence
- echo "Assign ENVARC: RAM:" >>ram:disk/s/startup-sequence
- echo "LoadWB" >>ram:disk/s/startup-sequence
- echo "EndCLI" >>ram:disk/s/startup-sequence
-
- echo "Required files are in 'RAM:disk/' directory..."
-
- wait 10
-